home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel Corporation',
- 'Copyright': u'Copyright (c) 2003-2004 Corel Corporation All rights reserved.',
- 'Description': u'',
- 'Host': u'Paint Shop Pro',
- 'Host Version': u'8.10'
- }
-
- def Preset_ColorAdjustColorBalance():
- return {
- 'ColorBalance': {
- 'PreserveLuminance': App.Constants.Boolean.true,
- 'Highlight': (0,0,0),
- 'Shadow': (0,0,0),
- 'Midtone': (-40,-10,40)
- }
- }
-
- def Do(Environment):
- # Color Adjust Color Balance
- App.Do( Environment, 'ColorAdjustColorBalance', Preset_ColorAdjustColorBalance())
-
-